home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue35 / pageprnt / PAGEPRNT.ZIP / PagePrnt / TestIt / PROJECT1.DPR < prev    next >
Text File  |  1997-09-23  |  247b  |  15 lines

  1. program Project1;
  2.  
  3. uses
  4.   Forms,
  5.   Unit1 in 'Unit1.pas' {MainForm},
  6.   PagePrnt in '\PROJECTS\PagePrnt\PagePrnt.pas';
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.Initialize;
  12.   Application.CreateForm(TMainForm, MainForm);
  13.   Application.Run;
  14. end.
  15.